#!/bin/bash
TARGET="$HOME/Documents/AI-Voice-Bridge/Start-AI-Voice-Bridge.command"
if [ ! -f "$TARGET" ]; then
  /usr/bin/osascript -e 'display dialog "AI Voice Bridge is not installed in ~/Documents/AI-Voice-Bridge yet. Run the installer first." buttons {"OK"} default button "OK" with title "AI Voice Bridge"'
  exit 1
fi
open "$TARGET"
